home *** CD-ROM | disk | FTP | other *** search
/ Exame Informatica 142 / Exame Informatica 142.iso / Programas / Cerberus / CerberusSetup.exe / CerberusNET_Source / utility.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2006-01-30  |  769 b   |  36 lines

  1. {
  2.  (C) Paul Alan Freshney 2006
  3.  (Based on an Indy Client Demo)
  4.  
  5.   Last Modified: January 29th 2006
  6.  
  7.   This code is free to use as you wish. Please do not distribute this code without
  8.   authorisation from myself. You are free to distribute versions of CerberusNET as
  9.   you wish as long as you link to "www.paulalanfreshney.com/cerberus" somewhere
  10.   within the application!
  11.  
  12.   35
  13. }
  14.  
  15. unit utility;
  16.  
  17. interface
  18.  
  19. type
  20.   TCNETPreferences = record
  21.                        CHost : string;
  22.                        CPort : integer;
  23.                        CRefresh : integer;
  24.                      end;
  25.  
  26. const
  27.   CNET_Date    : string = 'Jan 29 2006';
  28.   CNET_Version : string = 'v1.0';
  29.  
  30. var
  31.   CNETPreferenes : TCNETPreferences;
  32.  
  33. implementation
  34.  
  35. end.
  36.